/* stylesheet to accompany tic tac toe.htm */

body
{
   background:#6B49CD;
	 color: #6B49CD;
}

h1
{
  text-align: center;
	color: #ffffff;
	font-size: 50px;
}

table
{
  width: 280px;
	overflow: auto;
	margin: 40px auto;  /* TRBL */
	background: #6BCED1;
	border-radius: 10px;
}

td
{
  float: left;
	margin: 10px;
	height: 70px;
	width: 70px;
	font-size: 50px;
	background: #1C6163;
	color: #ffffff;
	text-align: center;
	border-radius: 5px;
}

td:hover, #reset:hover
{
   cursor: pointer;
	 background: #1A1231;
}

#reset
{
  border: 0;
	background: #462F88;
	color: #ffffff;
	font-size: 24px;
	width:15%;
	padding: 15px;
	border-radius: 5px;
}

footer
{
  display: block;
	text-align: center;
	padding-top: 20px;
}